home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Logoff Options 1.xpl < prev    next >
Text File  |  2001-05-14  |  1KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Shutdown\Windows 9x/ME\00) Shutdown Menu"
  5. "NAME"="Windows 9x Logoff Options"
  6. "VERSION"="1.24"
  7. "OSVERSION"="10100"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Show "Restart in MS-DOS mode" in logoff menu"
  10. "DESCRIPTION 1"="If you want to hide the selection to restart in MS-DOS mode, deactivate the first option."
  11. "AUTHOR"="Xteq Systems"
  12. "CONTACTURL"="http://www.xteq.com"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"=" "
  15. "COMMENT 2"="Thanks to AXCEL216 for the setting and CptSiskoX for his help!"
  16.  
  17.  
  18. sNRM="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\WinOldApp\NoRealMode" 'DWORD
  19. Sub Plugin_Initialize 
  20.     i=RegReadValue(sNRM)
  21.     if i=0 or IsEmpty(i) then 
  22.        SetUIElement 1,true
  23.     end if
  24. End Sub
  25.  
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30.  
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  b=GetUIElement(1)
  34.  if b=true then
  35.     s=RegReadValue(sNRM)
  36.     if isempty(s)=false then
  37.        Call RegDeleteValue(sNRM)
  38.     end if
  39.  else
  40.   Call RegWriteValue(sNRM,1,2)
  41.  end if
  42.  
  43.  
  44.  Call Restart()
  45. End Sub
  46.  
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.  
  51.  
  52.  
  53.